home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
fchmod.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-04
|
235b
|
13 lines
#include "amiga.h"
#include <amiga/ioctl.h>
int ioctl(int fd, int request, void *data);
int fchmod(int fd, int mode)
{
long amode = _make_protection(mode);
__chkabort();
return ioctl(fd, _AMIGA_SETPROTECTION, &amode);
}